MonobjcMonobjc Documented Class Library
StringListForKeyInTable Method (key, table)
NamespacesMonobjc.AppKitNSPrinterStringListForKeyInTable(NSString, NSString)

Returns an array of strings, one for each occurrence, associated with specified key.

Original signature is '- (NSArray *)stringListForKey:(NSString *)key inTable:(NSString *)table'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSArray StringListForKeyInTable(
	NSString key,
	NSString table
)
Public Overridable Function StringListForKeyInTable ( _
	key As NSString, _
	table As NSString _
) As NSArray
public:
virtual NSArray^ StringListForKeyInTable(
	NSString^ key, 
	NSString^ table
)
Parameters
key (NSString)
The key whose value you want.
table (NSString)
The name of a table from the printer's PPD file.
Return Value
An array of NSString objects, each containing a value associated with the specified key. Returns nil if the key is not in the table.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)