interface PC.ITextPattern {
// Properties
${text}: string;
${codePage}?: ${Encodings};
}
// This interface is not available in managed environment
// This interface is not available in native environment
text: string;
// This property is not available in managed environment
// This property is not available in native environment
Text to match
codePage?: ${Encodings};
// This property is not available in managed environment
// This property is not available in native environment
Code page to use for text encoding. If omitted or set to 0, uses the default code page. Use Encodings.UTF16 for UTF-16 two-byte encoding.